翻訳と辞書
Words near each other
・ Coca-Cola West Red Sparks
・ Coca-Cola with Lemon
・ Coca-Cola with Lime
・ Coca-Cola Young Professionals' Championship
・ Coca-Cola Zero
・ Coca-Cola Zero Belfast Bikes
・ Cocabamba District
・ Cocachacra District
・ Cocacolonization
・ Cocada (footballer)
・ Cocada amarela
・ Cocadas
・ Cocaethylene
・ Cobusca Nouă
・ Cobusca Veche
Cobweb (clustering)
・ Cobweb (comics)
・ Cobweb (disambiguation)
・ Cobweb (horse)
・ Cobweb Bridge
・ Cobweb model
・ Cobweb painting
・ Cobweb plot
・ Cobweb Strange
・ Cobwebs (audio drama)
・ Cobwebs in Concrete
・ Cobwebs to Catch Flies
・ Coby
・ Coby Bell
・ Coby Connell


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Cobweb (clustering) : ウィキペディア英語版
Cobweb (clustering)
COBWEB is an incremental system for hierarchical conceptual clustering. COBWEB was invented by Professor Douglas H. Fisher, currently at Vanderbilt University.
COBWEB incrementally organizes observations into a classification tree. Each node in a classification tree represents a class (concept) and is labeled by a probabilistic concept that summarizes the attribute-value distributions of objects classified under the node. This classification tree can be used to predict missing attributes or the class of a new object.
There are four basic operations COBWEB employs in building the classification tree. Which operation is selected depends on the category utility of the classification achieved by applying it. The operations are:
* Merging Two Nodes
Merging two nodes means replacing them by a node whose children is the union of the original nodes' sets of children and which summarizes the attribute-value distributions of all objects classified under them.
* Splitting a node
A node is split by replacing it with its children.
* Inserting a new node
A node is created corresponding to the object being inserted into the tree.
* Passing an object down the hierarchy
Effectively calling the COBWEB algorithm on the object and the subtree rooted in the node.
==The COBWEB Algorithm==

''COBWEB''(''root'', ''record''):
Input: A COBWEB node ''root'', an instance to insert ''record''
''if'' ''root'' has no children ''then''
''children'' :=
''newcategory''(''record'') \\ adds child with record’s feature values.
''insert''(''record'', ''root'') \\ update root’s statistics
''else''
''insert''(''record'', ''root'')
''for'' ''child'' ''in'' ''root''’s children ''do''
calculate Category Utility for ''insert''(''record'', ''child''),
set ''best1'', ''best2'' children w. best CU.
''end for''
''if'' ''newcategory''(''record'') yields best CU then
''newcategory''(''record'')
''else'' ''if'' ''merge''(''best1'', ''best2'') yields best CU then
''merge''(''best1'', ''best2'')
''COBWEB''(''root'', ''record'')
''else if'' ''split''(''best1'') yields best CU then
''split''(''best1'')
''COBWEB''(''root'', ''record'')
''else''
''COBWEB''(''best1'', ''record'')
''end if''
''end''

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Cobweb (clustering)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.